home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / editemacs.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  236 b   |  12 lines

  1. #include "bbs.h"
  2.  
  3. void EditEmacs(char *filename)
  4. {
  5.  sprintf(GSTR3,"\tEditor %s\n",filename);
  6.  CallersLog(GSTR3);
  7.  sprintf(GSTR3,"%scommands/syscmd/",Cmds->BBSLoc);
  8.  sprintf(GSTR2,"EDITOR %s",filename);
  9.  CustomCommand(GSTR3,GSTR2,1);
  10. }
  11.  
  12.